home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / gl_dev.idb / usr / include / gl / rct.h.z / rct.h
Encoding:
C/C++ Source or Header  |  1996-03-15  |  201 b   |  15 lines

  1. #ifndef __GL_RECT_H__
  2. #define __GL_RECT_H__
  3.  
  4. #ident "$Revision: 1.2 $"
  5.  
  6. typedef struct rct {
  7.     int xmin, xmax;
  8.     int ymin, ymax;
  9. } rct;
  10.  
  11. rct *rctnew();
  12. rct *rctclone();
  13.  
  14. #endif /* __GL_RECT_H__ */
  15.